home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / cli / mx2src.arc / NETAUX.MOD < prev    next >
Text File  |  1989-01-05  |  302b  |  14 lines

  1. (*$T-,$S-,$A+ *)
  2. MODULE  netaux;
  3. FROM    NETWORK         IMPORT  initnetwork,recframe;
  4. FROM    BIOS            IMPORT  Device;
  5. FROM    SYSCALL         IMPORT  SwapProcess;
  6. BEGIN
  7.         initnetwork(AUX);
  8.         LOOP
  9.                 recframe;
  10.                 SwapProcess;
  11.         END;
  12. END     netaux.
  13.  
  14.